사이트 내 전체검색
드래그시 자동복사
로빈아빠
https://cmd.kr/javascript/627 URL이 복사되었습니다.

본문

드래그시 자동복사

<script language="javascript">
bBool=false
var copiedtext=""
var tempstore=""

function initiatecopy() {
	bBool=true;
}

function copyit() {
	if (bBool) {
		tempstore=copiedtext
		document.execCommand("Copy")
		copiedtext=window.clipboardData.getData("Text");
		if (tempstore!=copiedtext) {
			alert(copiedtext);
		}
		bBool=false;
	}
}
document.onselectionchange = initiatecopy
document.onmouseup = copyit
</script>
드래그시 자동복사 됩니다.

댓글목록

등록된 댓글이 없습니다.

831 (3/17P)

Search

Copyright © Cmd 명령어 3.15.142.237